home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / infosrvr / doc / www_talk.arc / 000021_connolly@pixel.convex.com _Thu Dec 5 19:25:22 1991.msg < prev    next >
Internet Message Format  |  1992-11-30  |  6KB

  1. Return-Path: <connolly@pixel.convex.com>
  2. Received: from dxmint.cern.ch by  nxoc01.cern.ch  (NeXT-1.0 (From Sendmail 5.52)/NeXT-2.0)
  3.     id AA03918; Thu, 5 Dec 91 19:25:22 GMT+0100
  4. Received: by dxmint.cern.ch (cernvax) (5.57/3.14)
  5.     id AA01254; Thu, 5 Dec 91 19:14:08 +0100
  6. Received: from pixel.convex.com by convex.convex.com (5.61/1.35)
  7.     id AA08473; Thu, 5 Dec 91 12:19:25 -0600
  8. Received: from localhost by pixel.convex.com (5.64/1.28)
  9.     id AA29899; Thu, 5 Dec 91 12:16:12 -0600
  10. Message-Id: <9112051816.AA29899@pixel.convex.com>
  11. To: wais-talk@think.com
  12. Cc: tcl@allspice.berkeley.edu, www-talk@nxoc01.cern.ch
  13. Subject: documents, files, types, and access methods
  14. Date: Thu, 05 Dec 91 12:16:11 CST
  15. From: connolly@pixel.convex.com
  16.  
  17. Someone mentioned that WAIS should obviate the need for FTP. I disagree.
  18. I think that the WAIS protocol is good for finding documents, but not
  19. necesarily for transferring or displaying them.
  20.  
  21. There are two scenarios that WAIS is good for:
  22.  
  23. A. The database is built for wais. For example, DowQuest. That database is
  24. stored so that it can be efficiently acessed and delivered through WAIS.
  25.  
  26. In this case, it makes sense to transfer the contents of the documents through
  27. WAIS and to use the nifty chunking ideas.
  28.  
  29. B. The database is built for system X, and somebody sicked waisindex on it.
  30. This is currently, by far the most common case. Look at all the USENET
  31. archives, biology databases, library catalogs, etc. that weren't designed for
  32. use with WAIS, but they work pretty well.
  33.  
  34. In this case, it makes more sense to me to transfer and/or present the
  35. documents using the clients that the database was designed for. The WAIS server
  36. should send enough information to retrieve and/or display the document using the
  37. other client.
  38.  
  39. Example: the archie database. As a user, I want to query the archie
  40. database using WAIS's fulltext and relevance feedback queries, but I want to
  41. retrieve the documents with FTP, and I may want to "present" them with
  42. uncompress and tar, or lpr, or ghostscript, etc.
  43.  
  44. Example: USENET news. I want to query using WAIS, but read it with my
  45. news reader.
  46.  
  47. Example: my mail box. Query with wais, display with Xmh, Elm, mh, emacs, etc.
  48.  
  49. Retrieving the whole document with WAIS and saving it to a file is no good in
  50. this day and age of client-server computing. The WAIS client may be on a
  51. machine with no disk space to spare. And I may want to use the file on a
  52. different host.
  53.  
  54. So we see that the WAIS client needs to hand off documents to other clients.
  55. This raises the question: what information should the WAIS search client pass
  56. to the retrieval/display slave clients, and how?
  57.  
  58. The CNI-ARCH folks are discussing a standard for document identifiers. I
  59. think this is definitely one of the things that WAIS should pass, but it's
  60. not the only thing.
  61.  
  62. I'm beginning to look at documents sort of like records in a relational
  63. database. The WAIS client should negociate with the slave client what fields
  64. they have or are interested in. An obvious representation for these records
  65. is the RFC-822 mail message format.
  66.  
  67. Example: the archie database.
  68.  
  69. I use my xwais client to query archie.src on "vgrind." My xwais client gets a
  70. list of docids from the WAIS server. These docids contain at least the score
  71. and the CNI-ARCH style docid, which in this case would be enough info to
  72. construct a prospero file handle [I'm not sure there is such a thing as a
  73. prospero file handle, but play along anyway...].
  74.  
  75. I play gui-games with xwais until I get the list of documents that I like.
  76. Then, using some mechanism like the X selection mechanism or drag-and-drop
  77. (combined with SMTP, perhaps), I select a document and give it to my xftp
  78. application. The xwais client and the xftp client agreed earlier that they
  79. would send messages like:
  80.  
  81. From:        xwais@x.server.host
  82. To:        xftp@x.server.host
  83. CNI-ARCH-ID:    <12345@prospero:quiche.cs.mcgill.ca>
  84. SIZE-IN-BYTES:    120034
  85. FTP-HOST:    export.lcs.mit.edu
  86. FTP-USER:    anonymous
  87. FTP-CD:        pub/util
  88. FTP-GET:    vgrind.tar.Z
  89.  
  90. blah blah blah about vgrind, perhaps explaining what query found this file,
  91. or perhaps some stuff from the README in vgrind.tar.Z
  92. .
  93.  
  94. I have already played gui-games with xftp to tell it where to put the files
  95. it retrieves. When it gets this message, it does the HOST, USER, CD, and GET
  96. commands, and presto! I've got my document.
  97.  
  98. I think if we had a suite of these gui tools talking SMTP to each other, they
  99. could get a lot of work done. More examples:
  100.  
  101. To:    xtar@x.server.host
  102. fopen:    /home/connolly/vgrind.tar
  103.     or perhaps
  104. popen:    zcat /home/connolly/vgrind.tar.Z
  105.  
  106.     xtar has a gui for selecting a place to extract the archive
  107.  
  108. To:    xlpr@x.server.host
  109. fopen:    /home/connolly/vgrind-2.1/manual.ps
  110.     or
  111. popen:    zcat /home/connolly/vgrind-2.1/manul.ps.Z |
  112.  
  113.     xlpr selects destination printer, copies, etc.
  114.  
  115.  
  116. Most tools fit in naturally. The $PAGER and $EDITOR, and perhaps $SHELL tools
  117. could be MUCH more powerful if they could interoperate this way. [Has anybody
  118. used mx and tx from John Osterhout(sp?) ? Those and the Tk toolkit allow X
  119. applications to send commands back and forth.]
  120.  
  121. For example, the World-Wide-Web browser would fit the role of $PAGER in this
  122. environment. It would receive messages to display WWW nodes, containing their
  123. HTTP address (or NNTP, FTP, etc.). It would then display the node and allow
  124. the user to scroll around and choose anchors etc. It could handle most
  125. anchors by itself, but it might want to let the user select a region of text
  126. and send it to the WAIS client.
  127.  
  128. I don't think there's an $EDITOR that fits very well, though emacs is always a
  129. contender, and you have to have vi.
  130. [I think the mouse support in emacs needs a LOT of work, but I probably
  131. haven't seen the latest and greatest stuff.]
  132.  
  133. I'm not sure how $SHELL fits into all this but, for example, folks send shell
  134. commands in mail messages to each other all the time. You could just select
  135. the shell command in your mail $PAGER, and drag it to your $SHELL x-client
  136. for invocation.
  137.  
  138. I hope I get time to try to implement a couple of these ideas. Then we can
  139. all see whether they're worth persuing.
  140.  
  141. Dan